Google News
logo
ReactJS - Quiz(MCQ)
You have written the following code but nothing is rendering. How do you fix this problem?
const Heading = () => {
  <h1>Hello!</h1>;
};
A)
Add a render function
B)
Surround the h1 in a div.
C)
Move the h1 to another component.
D)
Change the curly braces to parentheses or add a return statement before the h1 tag.

Correct Answer :   Change the curly braces to parentheses or add a return statement before the h1 tag.